.modal-perfil {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}
.modal-perfil-content {
    background: linear-gradient(135deg, #0a0a0a, #050505);
    border: 2px solid #0fc;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.3s ease;
}
.modal-perfil-content h2 {
    color: #0fc;
}
.modal-perfil-content h3 {
    color: #0fc;
    margin-top: 20px;
}
.modal-perfil-content p {
    margin: 10px 0;
    color: #fff;
}
.modal-perfil-content strong {
    color: #0fc;
}
.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}
.close-modal:hover {
    color: #0fc;
}
.patentes-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.patente-badge {
    background: #1a1a1a;
    border: 1px solid #0fc;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #0fc;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}